home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Steven Spielberg's Director's Chair
/
Steven Spielberg's Director's Chair (1996)(Random House)(Disc 1 of 3)[Mac-PC].iso
/
pc
/
autorun.arg
< prev
next >
Wrap
Text File
|
1996-07-30
|
2KB
|
62 lines
BEGIN
{
//
// Only change prdouct name in one place
//
set _SetupIni to $ExePath
append "\\SUPPORT\\SETUP.INI" to _SetupIni
//
// Set our important variables
//
set _Product to $IniVariable %_SetupIni% "Product" "ShortTitle"
set _IniFile to "DC.INI"
//set _HDRoot to $IniVariable %_IniFile% %_Product% "ProductHDRoot"
set _HDRoot to $IniVariable %_IniFile% "MAIN" "ProductHDRoot"
set _CDRoot to $ExePath
set _LangIni to %_CDRoot%
append "\\STR.INI" to _LangIni
set _ARunQuest to $IniVariable %_LangIni% "ArgFile" "Install"
//
// Default to setup
//
set _Command to $ExePath
append "\\SETUP.EXE" to _Command
//
// Check for an executable with the short title as the name
//
set _ChkFile to %_HDRoot%
append "\\" to _ChkFile
append %_Product% to _ChkFile
append ".EXE" to _ChkFile
set _FileExists to $Exists %_ChkFile%
// MessageBox %_ChkFile%
//
// If we're installed, just run the product
//
if ( %_HDRoot% != "" && %_FileExists% == "y" ) {
set _Command to %_HDRoot%
append "\\" to _Command
append %_Product% to _Command
append ".EXE" to _Command
set _ARunQuest to $IniVariable %_LangIni% "ArgFile" "Run"
}
}
-AUTORUN %_ARunQuest%
-NOKADUPE
-NOFIRSTWINDOW
-OnlyOne
-386Enhanced
-TITLE Steven Spielberg's Director's Chair
-VFreeBlock 2000
-VFreeMem 4700
-PFree 1700
-GlobalAlloc 1000
-COMMAND %_Command%
-Bye
END